home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / libast / map_if.h < prev    next >
C/C++ Source or Header  |  2005-10-18  |  4KB  |  86 lines

  1. /*
  2.  * Copyright (C) 1997-2004, Michael Jennings
  3.  *
  4.  * Permission is hereby granted, free of charge, to any person obtaining a copy
  5.  * of this software and associated documentation files (the "Software"), to
  6.  * deal in the Software without restriction, including without limitation the
  7.  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  8.  * sell copies of the Software, and to permit persons to whom the Software is
  9.  * furnished to do so, subject to the following conditions:
  10.  *
  11.  * The above copyright notice and this permission notice shall be included in
  12.  * all copies of the Software, its documentation and marketing & publicity
  13.  * materials, and acknowledgment shall be given in the documentation, materials
  14.  * and software packages that this Software was used.
  15.  *
  16.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17.  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19.  * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  20.  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  21.  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  22.  */
  23.  
  24. #ifndef _LIBAST_MAP_IF_H_
  25. #define _LIBAST_MAP_IF_H_
  26.  
  27. /*
  28.  * interface goop
  29.  */
  30.  
  31. /* Standard typecast macros.... */
  32. #define SPIF_MAP(o)                                    (SPIF_CAST(map) (o))
  33. #define SPIF_MAP_CLASS(o)                              (SPIF_CAST(mapclass) SPIF_OBJ_CLASS(o))
  34.  
  35. /* Name of class variable associated with map interface */
  36. #define SPIF_MAPCLASS_VAR(type)                        spif_ ## type ## _mapclass
  37.  
  38. /* Check if a map is NULL */
  39. #define SPIF_MAP_ISNULL(o)                             (SPIF_MAP(o) == SPIF_NULL_TYPE(map))
  40.  
  41. /* Check if an object is a map */
  42. #define SPIF_OBJ_IS_MAP(o)                             SPIF_OBJ_IS_TYPE(o, map)
  43.  
  44. /* Call a method on an instance of an implementation class */
  45. #define SPIF_MAP_CALL_METHOD(o, meth)                  SPIF_MAP_CLASS(o)->meth
  46.  
  47. /* Calls to the basic functions. */
  48. #define SPIF_MAP_NEW(type)                             SPIF_MAP((SPIF_CLASS(SPIF_MAPCLASS_VAR(type)))->noo())
  49. #define SPIF_MAP_INIT(o)                               SPIF_OBJ_INIT(o)
  50. #define SPIF_MAP_DONE(o)                               SPIF_OBJ_DONE(o)
  51. #define SPIF_MAP_DEL(o)                                SPIF_OBJ_DEL(o)
  52. #define SPIF_MAP_SHOW(o, b, i)                         SPIF_OBJ_SHOW(o, b, i)
  53. #define SPIF_MAP_COMP(o1, o2)                          SPIF_OBJ_COMP(o1, o2)
  54. #define SPIF_MAP_DUP(o)                                SPIF_OBJ_DUP(o)
  55. #define SPIF_MAP_TYPE(o)                               SPIF_OBJ_TYPE(o)
  56.  
  57. #define SPIF_MAP_COUNT(o)                              SPIF_CAST_C(size_t) ((SPIF_MAP_CALL_METHOD((o), count))(o))
  58. #define SPIF_MAP_GET(o, key)                           SPIF_CAST(obj) ((SPIF_MAP_CALL_METHOD((o), get))(o, key))
  59. #define SPIF_MAP_GET_KEYS(o, l)                        SPIF_CAST(list) ((SPIF_MAP_CALL_METHOD((o), get_keys))(o, l))
  60. #define SPIF_MAP_GET_PAIRS(o, l)                       SPIF_CAST(list) ((SPIF_MAP_CALL_METHOD((o), get_pairs))(o, l))
  61. #define SPIF_MAP_GET_VALUES(o, l)                      SPIF_CAST(list) ((SPIF_MAP_CALL_METHOD((o), get_values))(o, l))
  62. #define SPIF_MAP_HAS_KEY(o, key)                       SPIF_CAST(bool) ((SPIF_MAP_CALL_METHOD((o), has_key))(o, key))
  63. #define SPIF_MAP_HAS_VALUE(o, value)                   SPIF_CAST(bool) ((SPIF_MAP_CALL_METHOD((o), has_value))(o, value))
  64. #define SPIF_MAP_ITERATOR(o)                           SPIF_CAST(iterator) ((SPIF_MAP_CALL_METHOD((o), iterator))(o))
  65. #define SPIF_MAP_REMOVE(o, item)                       SPIF_CAST(obj) ((SPIF_MAP_CALL_METHOD((o), remove))(o, item))
  66. #define SPIF_MAP_SET(o, key, value)                    SPIF_CAST(bool) ((SPIF_MAP_CALL_METHOD((o), set))(o, key, value))
  67.  
  68. typedef spif_obj_t spif_map_t;
  69.  
  70. SPIF_DECL_OBJ(mapclass) {
  71.     SPIF_DECL_PARENT_TYPE(class);
  72.  
  73.     spif_func_t count;
  74.     spif_func_t get;
  75.     spif_func_t get_keys;
  76.     spif_func_t get_pairs;
  77.     spif_func_t get_values;
  78.     spif_func_t has_key;
  79.     spif_func_t has_value;
  80.     spif_func_t iterator;
  81.     spif_func_t remove;
  82.     spif_func_t set;
  83. };
  84.  
  85. #endif /* _LIBAST_MAP_IF_H_ */
  86.